home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-12-04 | 460 b | 28 lines | [TEXT/MPS ] |
- /*
- File: icm0.c
- Contains: Generic Functions
- Written by: DTS and QT Engineering
- Copyright: © 1992-1994 by Apple Computer, Inc., all rights reserved.
- Change History (most recent first):
- <1> 12/4/94 khs changed the format of the file to the new look and feel
- To Do:
- */
-
-
- // INCLUDE FILES
- #include "icm.h"
-
-
- // FUNCTIONS
- void CheckError(OSErr error,
- Str255 displayString)
- {
- if (error)
- {
- DebugStr(displayString);
- ExitToShell();
- }
- }
-
-
-